Enum SeitenlokalisationStp

  • All Implemented Interfaces:
    Serializable, Comparable<SeitenlokalisationStp>

    public enum SeitenlokalisationStp
    extends Enum<SeitenlokalisationStp>
    Verwendung z. B. bei ICD-10-GM oder OPS

    Java-Klasse für Seitenlokalisation_Stp.

    Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.

    
     <simpleType name="Seitenlokalisation_Stp">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="L"/>
         <enumeration value="R"/>
         <enumeration value="B"/>
       </restriction>
     </simpleType>
     
    • Method Detail

      • values

        public static SeitenlokalisationStp[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SeitenlokalisationStp c : SeitenlokalisationStp.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SeitenlokalisationStp valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()